diff -r 1db003b7b384 -r 35d12a9548a3 comment_subject/comment_subject.module
--- comment_subject.module	Thu Jul 08 05:55:32 2010 -0500
+++ comment_subject.module	Thu Jul 08 05:58:09 2010 -0500
@@ -25,6 +25,10 @@ function comment_subject_form_alter($for
           $subject = $comment->subject;
         }
         break;
+      default:
+        $node = node_load($form['nid']['#value']);
+        $subject = $node->title;
+        break;
     }
     if (!preg_match('/^' . preg_quote(t('Re:')) . '/i', $subject)) {
       $subject = t('Re:') . ' ' . $subject;
